home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 (Alt) / MACD 5.bin / workbench / libs / unixlib.lha / unix / include / sys / timeb.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-08  |  145 b   |  13 lines

  1. #ifndef _TIMEB_H
  2. #define _TIMEB_H
  3.  
  4. struct timeb
  5. {
  6.   time_t   time;
  7.   unsigned short millitm;
  8.   short    timezone;
  9.   short    dstflag;
  10. };
  11.  
  12. #endif
  13.